Tables [dbo].[SupplementTypeRef]
Properties
PropertyValue
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_SupplementTypeRef: SupplementTypeKeySupplementTypeKeyuniqueidentifier16
No
SupplementTypeDescnvarchar(50)100
No
IsEnclosurebit1
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_SupplementTypeRef: SupplementTypeKeyPK_SupplementTypeRefSupplementTypeKey
Yes
SQL Script
CREATE TABLE [dbo].[SupplementTypeRef]
(
[SupplementTypeKey] [uniqueidentifier] NOT NULL,
[SupplementTypeDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[IsEnclosure] [bit] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[SupplementTypeRef] ADD CONSTRAINT [PK_SupplementTypeRef] PRIMARY KEY CLUSTERED ([SupplementTypeKey]) ON [PRIMARY]
GO
Uses
Used By